
/*************************
    Text photo alt
*************************/
section.text-photo-alt{
  margin: 0;
  padding:   0;
}

/*************************
    Header slider
*************************/

#slider-widget {
  margin: 0;
  padding: 0;
  position: relative;
}

#slider-widget #header-carousel .carousel-inner {
  position: relative;
  overflow: hidden;
}
/*-----------------------------------
  Flèche clignotante “scroll down”
-----------------------------------*/
/*-----------------------------------
  Scroll-arrow compacte + ripple réduit
-----------------------------------*/
#slider-widget {
  position: relative;
}

.scroll-arrow.play-now-two {
  position: absolute;
  bottom: 10px;               /* espace réduit depuis le bas */
  left: 50%;
  transform: translateX(-50%);
  width: 50px;                /* diamètre du cercle réduit */
  height: 50px;
  background-color: rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  overflow: visible;
}

/* Ripple circles réduits */
.scroll-arrow .ripple,
.scroll-arrow .ripple:before,
.scroll-arrow .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;                /* réduit de 70→40 */
  height: 30px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.4);
  animation: ripple 3s infinite;
  content: "";
}
.scroll-arrow .ripple:before {
  animation-delay: 0.9s;
}
.scroll-arrow .ripple:after {
  animation-delay: 0.6s;
}

@keyframes ripple {
  70% {
    box-shadow: 0 0 0 40px rgba(255,255,255,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255,255,255,0);
  }
}

/* Chevron centered without blink */
.scroll-arrow.play-now-two i.fa-chevron-down {
  position: relative;
  font-size: 1.5rem;
  color: #444444;
  z-index: 1;
  animation: none;
}


/*#slider-widget #header-carousel .carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 150px);
  opacity: 0; /* Caché par défaut */
  /*z-index: 0; /* En arrière-plan par défaut */
 /* transition: none; /* Désactive les transitions Bootstrap */
  /*
}*/
#slider-widget #header-carousel  .carousel-item {
  height: calc(100vh - 150px);

  display: block; /* Garder les slides dans le flux */
  visibility: hidden; /* Masquer les slides non actives */
  opacity: 0; /* Rendre les slides invisibles */
  transition: none; /* Désactiver les transitions Bootstrap */
  z-index: 1; /* Mettre les slides en arrière-plan par défaut */
}
#slider-widget #header-carousel .carousel-item.active {
  opacity: 1; /* L'image active est visible */
  z-index: 1; /* Place l'image active au-dessus */
  position: relative;
}


#slider-widget #header-carousel .carousel-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1; /* Place l'image en arrière-plan */
}

/*** Boutons de Navigation ***/
#slider-widget .carousel-control-prev,
#slider-widget .carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.5); /* Fond semi-transparent */
  border: none;
  border-radius: 50%; /* Boutons arrondis */
  position: absolute;
  top: 50%;
  z-index: 3;
  transition: none;
}

#slider-widget .carousel-control-prev:hover,
#slider-widget .carousel-control-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

#slider-widget .carousel-control-prev {
  left: 20px;
}

#slider-widget .carousel-control-next {
  right: 20px;
}

#slider-widget .carousel-control-prev-icon,
#slider-widget .carousel-control-next-icon {
  width: 20px;
  height: 20px;
  background-size: 100%;
}

#slider-widget #header-carousel .carousel-caption {
  padding: 75px 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /* Supprimez ou modifiez le background-color */
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
  #slider-widget #header-carousel  .carousel-caption .desc {
    position: relative;
    padding: 56px;
    overflow: hidden;
  }
#slider-widget #header-carousel  .carousel-item.active .desc .line {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  border: 9px solid #fff;
  -webkit-clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
  clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
}
#slider-widget #header-carousel  .carousel-item.active h1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
#slider-widget #header-carousel  .carousel-item.active h2 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
#slider-widget #header-carousel  .carousel-item.active h4 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}
#slider-widget #header-carousel  .carousel-item.active p {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}
#slider-widget #header-carousel  .carousel-item.active .carousel-caption .desc .line {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 0.3s;
}

#slider-widget #header-carousel .carousel-item .description h2 {
  font-size: 1.5rem;
}

#slider-widget #header-carousel .carousel-item .description p {
  font-size: 1rem;
}
/* Bloc Description */
#slider-widget #header-carousel .carousel-item .description {
  position: relative;
  z-index: 2; /* Place la description au-dessus de l'image */
  text-align: center; /* Centre le texte */
  color: white;
  background: rgba(0, 0, 0, 0.5); /* Fond semi-transparent */
  padding: 20px 30px;
  border-radius: 10px;
  max-width: 80%; /* Limite la largeur de la description */
}

#slider-widget #header-carousel .title_effect {
  opacity: 0; /* Caché par défaut */
  transition: opacity 0.5s ease, transform 0.5s ease;
}

#slider-widget #header-carousel .title_effect.animate__animated {
  opacity: 1; /* Visible lors de l'animation */
}


/* Styles de base */
#slider-widget .carousel-caption .mainTitle {
  font-size: 9vw; /* Utilise une taille en viewport pour s'adapter */
  color: #f39ac1;
  margin: 0;
  padding: 0;
  text-align: left;
}

#slider-widget .carousel-caption .subtitle {
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  margin-left: 100px; /* Décalage par rapport au titre */
  font-size: 3vw; /* Taille responsive */
  text-align: left;
  opacity: 0.6;

}

#slider-widget .carousel-caption a {
  background-color: #efb443;
  color: var(--thm-black);
  font-weight: 700;
  padding: 10px 20px;
  border: none;
  border-radius: 0;
  margin-left: 100px; /* Aligne le bouton avec le subtitle */
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  float: left;

}

/* Ajustements pour les écrans moyens et petits */
@media (max-width: 768px) {
 #slider-widget  .carousel-caption .mainTitle  {
      font-size: 12vw; /* Agrandissement relatif pour les petits écrans */
      text-align: center; /* Centre le titre */
  }
  #slider-widget .carousel-caption .subtitle {
      font-size: 6vw;
      margin-left: 0; /* Supprime le décalage pour centrer le texte */
      text-align: center;
  }
  #slider-widget .carousel-caption   a {
      margin-left: 0; /* Centre également le bouton */
      display: block;
      margin: 20px auto 0 auto;
  }
}

/*** Effets Alternatifs ***/
/* Effet de fondu */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


#slider-widget #header-carousel .carousel-caption {
  z-index: 2;
}

/*** Mobile ***/
@media (max-width: 768px) {
  #slider-widget #header-carousel .carousel-item {
    min-height: 450px;
  }

  #slider-widget .carousel-control-prev,
  #slider-widget .carousel-control-next {
    width: 40px;
    height: 40px;
  }
}
/*================================================
    SECTION TITLE
=================================================*
/*section-title*/
.section-title-widget {
  position: relative;
  margin-bottom: 60px;
  z-index: 1;
}
.section-title-widget span {
  color: #FF2D55;
  font-family: "Oswald", sans-serif;
  letter-spacing: 1px;
  font-size: 16px;
  text-transform: uppercase;
  display: block;
}
.section-title-widget h2 {
  font-size: 40px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.section-title-widget h2 b {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 80%, #FF2D55 80%);
  font-weight: unset;
  background-size: 100px 1.07em !important;
}
.section-title-widget .btn {
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -18px;
}
.section-title-widget .bg-title {
  color: rgba(73, 57, 231, 0.05);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 100px;
  line-height: 120px;
  position: absolute;
  top: 0;
  left: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: -1;
  margin-top: -25px;
}
.section-title-widget .bar {
  position: relative;
  width: 20px;
  height: 4px;
  background: #FF2D55;
  display: block;
}
.section-title-widget .bar::after, .section-title-widget .bar::before {
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  content: "";
}
.section-title-widget .bar::after {
  width: 25px;
  background: #00acee;
  right: -29px;
}
.section-title-widget .bar::before {
  background: #efa506;
  width: 30px;
  right: -63px;
}

/*================================================
MASKS SLIDERS
=================================================*
/* Masque noir semi-transparent */
.mask-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Ajuste l'opacité selon le besoin */
  z-index: 1;
}

/* Masque blanc semi-transparent */
.mask-light {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  z-index: 1;
}

/* Masque dégradé haut-bas */
.mask-gradient-top-bottom {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  z-index: 1;
}

/* Masque dégradé bas-haut */
.mask-gradient-bottom-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  z-index: 1;
}

/* Masque avec un flou */
.mask-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* Masque avec lignes diagonales */
.mask-striped {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4) 10px, rgba(0, 0, 0, 0) 10px, rgba(0, 0, 0, 0) 20px);
  z-index: 1;
}

/* Masque en dégradé radial (centre vers l'extérieur) */
.mask-radial {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0) 80%);
  z-index: 1;
}


/*================================================
INSTAGRAM
=================================================*/
#instagramCarousel h2{
  color: #aa956f;
  font-style: italic;
  font-weight:400;
}
#instagramCarousel .swiper {
  margin-top: 40px !important;
}
#instagramCarousel .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

#instagramCarousel .thumbnail-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%;
  /* Square */
  overflow: hidden;
}

#instagramCarousel .thumbnail-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#instagramCarousel .hover-caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

#instagramCarousel .thumbnail-wrapper:hover .hover-caption {
  opacity: 1;
}

#instagramCarousel .like-count {
  position: absolute;
  bottom: 5px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 14px;
  padding: 5px 8px;
  border-radius: 20px;
  display: flex;
  align-items: center;
}

#instagramCarousel .like-count i {
  margin-right: 5px;
}

#instagramCarousel .video-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  color: #fff;
  font-size: 18px;
  padding: 5px;
  border-radius: 50%;
}

#instagramCarousel .swiper-button-prev,
#instagramCarousel .swiper-button-next {
  background: #aa956f;
  /* Couleur de fond */
  color: #fff;
  /* Couleur de la flèche */
  width: 50px;
  /* Taille du bouton */
  height: 50px;
  /* Taille du bouton */
  border-radius: 50%;
  /* Cercle parfait */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  /* Ombre */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  /* Taille des icônes */
  position: absolute;
  top: 50%;
  /* Centré verticalement */
  transform: translateY(-50%);
  /* Centrage parfait */
  z-index: 1000;
  /* Toujours visible */
  cursor: pointer;
  padding: 0;
  /* Supprime le padding */
  overflow: visible;
  /* Assure la visibilité */
}

/* Ajustement pour la flèche gauche */
#instagramCarousel .swiper-button-prev {
  left: -25px;
  /* Décalage vers la gauche */
}

/* Ajustement pour la flèche droite */
#instagramCarousel .swiper-button-next {
  right: -25px;
  /* Décalage vers la droite */
}

/* Effet au survol */
#instagramCarousel .swiper-button-prev:hover,
#instagramCarousel .swiper-button-next:hover {
  background: #99744d;
  /* Couleur plus foncée au survol */
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4);
  /* Accentuation de l'ombre */
}

/* Ajustement de la taille et de la visibilité des icônes */
#instagramCarousel .swiper-button-prev::after,
#instagramCarousel .swiper-button-next::after {
  font-size: 20px;
  /* Taille ajustée des flèches */
  font-weight: bold;
  display: inline-block;
  line-height: 1;
  /* Assure un bon alignement */
}

#instagramCarousel .swiper-button-next::after {
  margin-right: 15px;
}

#instagramCarousel .swiper-button-prev::after {
  margin-left: 20px;
}

#feedModal .modal-body img,
#feedModal .modal-body video {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

#feedModal .modal-body .modal-caption {
  text-align: left;
  margin-bottom: 10px;
}

#feedModal .modal-body .modal-date-likes {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #6c757d;
}

#feedModal .modal-body .modal-date {
  font-size: 14px;
}

#feedModal .modal-footer .btn-instagram {
  background: #e1306c;
  color: #fff;
}

#feedModal .modal-footer .btn-instagram:hover {
  background: #c02d5e;
  color: #fff;
}

/*================================================
ALTERNANCE PHOTOS/TEXTE DROITE ET GAUCHE
=================================================*/
.text-column {
  max-width: 700px; /* Environ 50% de la colonne */
  margin: 0 auto;  /* Centrage horizontal dans la colonne */
  padding: 50px;   /* Padding par défaut */
}
.text-column h1,
.text-column h2,
.text-column h3,
.text-column h4,
.text-column h5,
.text-column h6,
.text-column p,
.text-column ul,
.text-column ol,
.text-column blockquote,
.text-column div {
  display: block; /* Forcer un affichage en bloc */
  margin-bottom: 15px; /* Ajouter un espacement inférieur */
  width: 100%;

}
.text-column {
flex-direction: column; /* Organise les enfants en colonne */
}

.text-column > * {
display: block; /* Chaque élément prend une ligne */
margin-bottom: 15px; /* Ajoute un espacement entre les éléments */
}

/* Bloc texte aligné dynamiquement */


/* Alignement dynamique pour le bloc texte */
.text-column.text-left {
  margin-left: 0;

  margin-right: auto; /* Aligne le bloc à gauche */
}

.text-column.text-right {
  margin-left: auto;
  margin-right: 0; /* Aligne le bloc à droite */
  text-align: left;
  padding-left: 50px;
}
.image-column  {
  padding: 0 !important;
  margin: 0 !important;
}
.image-column img {
  width: 100%;     /* L'image occupe toute la largeur de la colonne */
  height: auto;    /* Hauteur ajustée automatiquement */
}
.text-photo-alt ul,#about-default ul{
  margin: 10px 0 10px 20px;
  list-style: none;
}
.text-photo-alt ul li::before,#about-default  ul li::before {
  content: "\f00c";
  font-family: FontAwesome;
  color: #f49ac1;
  display: inline-block;
  margin-left: -1.3em;
  width: 1.3em;
} 
.text-photo-alt .about_left_img img.main,.text-photo-alt .about_right_img  img.main {
  border: 1px solid #000000;
  position: relative;
  height: 100%;
}

 img.shape-img_bottom-right,img.shape-img_bottom-left  {
  height: 61px;
  width: auto;

}

img.shape-img_bottom-right {
  position: absolute;
  bottom: -61px;
  right: 0;
  z-index: 5000000;
}
img.shape-img_bottom-left {
  position: absolute;
  bottom: -61px;
  left: 0;
  z-index: 5000000;
}


/****** buttons ***/
.btn-cta  {
  display: inline-block;
  vertical-align: middle;
  border: none;
  outline: none;
  background-color: var(--thm-primary);
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  color: var(--thm-black);
  padding: 25px 61.5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
    transition-property: all;
    transition-duration: 500ms;
    transition-timing-function: ease;
}

.btn-cta:hover {
  color: #FFF;
  background-color: #FFA724;
  border-color: #FFA724; 
}
.btn-cta {
  color: #FFF;
  border-color: #000; 
  background-color: #000;

}
.btn-cta:hover {
    color: #FFA724;
    background-color: #1d436f;
    border-color: #1d436f; 
}

.read-more-btn {
  display: inline-block;
  vertical-align: middle;
  border: none;
  outline: none;
  background-color: var(--thm-primary);
  text-transform: uppercase;
  font-weight: bold;
  color: var(--thm-black);
  padding: 10px 15px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
    transition-property: all;
    transition-duration: 500ms;
    transition-timing-function: ease;

}
.read-more-btn:hover {
    color: #FFA724;
    background-color: #1d436f;
    border-color: #1d436f; 
}


/******** list *******/
section.content ul {
  margin: 10px 0 10px 20px;
  list-style: none;
}
section.content li {
  padding-left: 1.3em;
}
section.content li::before {
  content: "\f00c";
  font-family: FontAwesome;
  display: inline-block;
  margin-left: -1.3em;
  width: 1.3em;
}


/*================================================
gallery_masonry
=================================================*/

.gallery_masonry .gallery_masonry-item {
  margin-bottom: 30px;
}

.gallery_masonry #gallery_masonry-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

.gallery_masonry #gallery_masonry-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.gallery_masonry #gallery_masonry-flters li:hover,
.gallery_masonry #gallery_masonry-flters li.filter-active {
  color: #2487ce;
}

.gallery_masonry #gallery_masonry-flters li:last-child {
  margin-right: 0;
}

.gallery_masonry .gallery_masonry-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.gallery_masonry .gallery_masonry-wrap::before {
  content: "";
  background: rgba(36, 135, 206, 0.6);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.gallery_masonry .gallery_masonry-wrap .gallery_masonry-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.gallery_masonry .gallery_masonry-wrap .gallery_masonry-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.gallery_masonry .gallery_masonry-wrap .gallery_masonry-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.gallery_masonry .gallery_masonry-wrap .gallery_masonry-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.gallery_masonry .gallery_masonry-wrap .gallery_masonry-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.gallery_masonry .gallery_masonry-wrap .gallery_masonry-links {
  text-align: center;
  z-index: 4;
}

.gallery_masonry .gallery_masonry-wrap .gallery_masonry-links a {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.gallery_masonry .gallery_masonry-wrap .gallery_masonry-links a:hover {
  color: #fff;
}

.gallery_masonry .gallery_masonry-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.gallery_masonry .gallery_masonry-wrap:hover .gallery_masonry-info {
  opacity: 1;
}

.gallery_masonry .gallery_masonry-wrap:hover .gallery_masonry-info::before {
  top: 15px;
  left: 15px;
}

.gallery_masonry .gallery_masonry-wrap:hover .gallery_masonry-info::after {
  bottom: 15px;
  right: 15px;
}

/*================================================
GOOGLE MAP
=================================================*/
.contact-map {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  overflow: hidden; /* Évite tout dépassement */
}

.contact-map .container-fluid,.contact-map .container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  padding: 0; /* Supprime les marges internes */
}

.contact-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0; /* Supprime les bordures de l'iframe */
}

/*================================================
Alternace photos droite et gauche
=================================================*/
.text-column {
  max-width: 700px; /* Environ 50% de la colonne */
  margin: 0 auto;  /* Centrage horizontal dans la colonne */
  padding: 50px;   /* Padding par défaut */
}
.text-column h1,
.text-column h2,
.text-column h3,
.text-column h4,
.text-column h5,
.text-column h6,
.text-column p,
.text-column ul,
.text-column ol,
.text-column blockquote,
.text-column div {
  display: block; /* Forcer un affichage en bloc */
  margin-bottom: 15px; /* Ajouter un espacement inférieur */
  width: 100%;
}
.text-column h2,
.text-column h3,
.text-column h4{
  font-weight:300;

}

.text-column {
flex-direction: column; /* Organise les enfants en colonne */
}

.text-column > * {
display: block; /* Chaque élément prend une ligne */
margin-bottom: 15px; /* Ajoute un espacement entre les éléments */
}

/* Bloc texte aligné dynamiquement */


/* Alignement dynamique pour le bloc texte */
.text-column.text-left {
  margin-left: 0;

  margin-right: auto; /* Aligne le bloc à gauche */
}

.text-column.text-right {
  margin-left: auto;
  margin-right: 0; /* Aligne le bloc à droite */
  text-align: left;
  padding-left: 50px;
}
.image-column img {
  width: 100%;     /* L'image occupe toute la largeur de la colonne */
  height: auto;    /* Hauteur ajustée automatiquement */
}
.text-photo-alt ul {
  margin: 10px 0 10px 20px;
  list-style: none;
}
.text-photo-alt ul li::before {
  content: "\f00c";
  font-family: FontAwesome;
  color: #f49ac1;
  display: inline-block;
  margin-left: -1.3em;
  width: 1.3em;
} 

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  /*border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;*/
  border-right:0;
  border-bottom: 0;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*================================================
Blog CSS
=================================================*/
.blog-area-widget {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}

.blog-area-widget.bg-image {
  background-image: url(../../assets/img/bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.blog-area-widget .single-blog-post {
  margin-bottom: 30px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 15px 15px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 15px 15px 0 rgba(0, 0, 0, 0.06);
}

.blog-area-widget .single-blog-post .blog-image {
  position: relative;
  overflow: hidden;
}

.blog-area-widget .single-blog-post .blog-image a {
  display: block;
}
.blog-area-widget .single-blog-post .blog-image img {
  max-width: 100%;
  min-height: 300px;
}
.blog-area-widget .single-blog-post .blog-image a img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-area-widget .single-blog-post .blog-image .post-tag {
  position: absolute;
  right: 0;
  top: 60px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-area-widget .single-blog-post .blog-image .post-tag a {
  background: #FF2D55;
  color: #ffffff;
  padding: 9px 28px;
}

.blog-area-widget .single-blog-post .blog-post-content {
  padding: 25px;
}

.blog-area-widget .single-blog-post .blog-post-content .date {
  color: #8dc63f;
  display: block;
  text-transform: uppercase;
  font-size: 14px;
  font-family: "Oswald", sans-serif;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-area-widget .single-blog-post .blog-post-content h3 {
  margin-top: 13px;
  margin-bottom: 15px;
  line-height: 30px;
  font-size: 22px;
}

.blog-area-widget .single-blog-post .blog-post-content h3 a {
  color: #0d1028;
}

.blog-area-widget .blog-area-widget .single-blog-post .blog-post-content h3 a:hover, .single-blog-post .blog-post-content h3 a:focus {
  color: #FF2D55;
}

.single-blog-post .blog-post-content p {
  margin-bottom: 15px;
}

.blog-area-widget .single-blog-post .read-more-btn {
  position: relative;
  font-weight: 500;
  color: #FFF;
}

.blog-area-widget .single-blog-post .read-more-btn:hover {
  color: #00acee;
  letter-spacing: 1px;
}

.blog-area-widget .single-blog-post:hover .blog-image a img, .single-blog-post:focus .blog-image a img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.blog-area-widget .single-blog-post:hover .blog-image .post-tag, .single-blog-post:focus .blog-image .post-tag {
  top: 70px;
}

.blog-area-widget .single-blog-post:hover .blog-image .post-tag a, .single-blog-post:focus .blog-image .post-tag a {
  background: #8dc63f;
  color: #ffffff;
}

.blog-area-widget .blog-slides.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 25px;
  line-height: .01;
}

/*section-title*/
.blog-area-widget .section-title {
  position: relative;
  margin-bottom: 60px;
  z-index: 1;
}
.blog-area-widget .section-title span {
  color: #FF2D55;
  font-family: "Oswald", sans-serif;
  letter-spacing: 1px;
  font-size: 16px;
  text-transform: uppercase;
  display: block;
}
.blog-area-widget .section-title h2 {
  font-size: 40px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.blog-area-widget .section-title h2 b {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 80%, #FF2D55 80%);
  font-weight: unset;
  background-size: 100px 1.07em !important;
}
.blog-area-widget .section-title .btn {
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -18px;
}
.blog-area-widget .section-title .bg-title {
  color: rgba(73, 57, 231, 0.05);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 140px;
  line-height: 120px;
  position: absolute;
  top: 0;
  right: 35%;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: -1;
  margin-top: -25px;
}
.blog-area-widget .section-title .bar {
  position: relative;
  width: 20px;
  height: 4px;
  background: #FF2D55;
  display: block;
}
.blog-area-widget .section-title .bar::after, .section-title .bar::before {
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  content: "";
}
.blog-area-widget .section-title .bar::after {
  width: 25px;
  background: #00acee;
  right: -29px;
}
.blog-area-widget .section-title .bar::before {
  background: #efa506;
  width: 30px;
  right: -63px;
}



/*blog-style-two*/
.blog-section {
  padding-bottom: 90px;
}

.single-blog-card {
  position: relative;
  margin-bottom: 30px;
}

.single-blog-card::before {
  opacity: .60;
  background: #0d1028;
  content: "";
  height: 100%;
  bottom: 0;
  left: 0;
  z-index: 1;
  right: 0;
  position: absolute;
  width: 100%;
}

.single-blog-card img {
  width: 100%;
}

.single-blog-card .post-tag {
  position: absolute;
  right: 0;
  top: 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 2;
}

.single-blog-card .post-tag a {
  background: #FF2D55;
  color: #ffffff;
  padding: 9px 28px;
}

.single-blog-card .blog-post-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px 30px 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 2;
}

.single-blog-card .blog-post-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  line-height: 28px;
}

.single-blog-card .blog-post-content h3 a {
  color: #ffffff;
}

.single-blog-card .blog-post-content h3 a:hover, .single-blog-card .blog-post-content h3 a:focus {
  color: #FF2D55;
}

.single-blog-card .blog-post-content p {
  color: #ffffff;
  opacity: .77;
}

.single-blog-card .blog-post-content .read-more-btn {
  position: relative;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  color: #FF2D55;
}

.single-blog-card .blog-post-content .read-more-btn:hover {
  color: #00acee;
  letter-spacing: 1px;
}

.single-blog-card:hover .post-tag, .single-blog-card:focus .post-tag {
  top: 40px;
}

.single-blog-card:hover .post-tag a, .single-blog-card:focus .post-tag a {
  background: #8dc63f;
  color: #ffffff;
}

.single-blog-card:hover .blog-post-content, .single-blog-card:focus .blog-post-content {
  padding-bottom: 30px;
}

.single-blog-card:hover .blog-post-content .read-more-btn, .single-blog-card:focus .blog-post-content .read-more-btn {
  opacity: 1;
  visibility: visible;
}

/*================================================
main title  Default CSS
=================================================*/
/* Main Title Section */
.main-title {
  padding: 0 20px;
  text-align: center;
}

.main-title .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* Bloc titre principal */
.block-title {
  position: relative;
  max-width: 800px;
  text-align: center;
}

.block-title img {
  display: block;
  /*margin: 0 auto 15px;*/
  margin-top: 0;
  margin-bottom: 15px;
  max-width: 100px; /* Ajustable selon le design */
}

/* Sous-titre */
.block-title p {
  font-size: 1.2rem;
  font-weight: 400;
  color: #666;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* Titre principal */
.block-title h1, .block-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  position: relative;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* Effet soulignement sous le titre */
/*.block-title h1::after, .block-title h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #007BFF; /* Couleur personnalisable */
 /* position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}*/

/* Responsivité */
@media (max-width: 768px) {
  .block-title h1, .block-title h2 {
      font-size: 2rem;
  }
  
  .block-title p {
      font-size: 1rem;
  }
}

/*================================================
About Default CSS
=================================================*/
/* Section About */
#about-default {
  margin: 0 auto;
  padding:  0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

#about-default .content {
  flex: 1;
  text-align: left;
}

#about-default h2 {
  position: relative;
}

/*#about-default h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #007BFF;
  position: absolute;
  bottom: -10px;
  left: 0;
}*/

#about-default p {
  margin-bottom: 20px;
}

#about-default .image-container {
  flex: 1;
  display: flex;
  justify-content: center;
}

#about-default img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

#about-default img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  #about-default {
      flex-direction: column;
      text-align: center;
  }

  #about-default .content {
      text-align: center;
  }

  #about-default h2::after {
      left: 50%;
      transform: translateX(-50%);
  }
}


/*================================================
About CSS
=================================================*/
.about-area-2pics-widget {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 80px 0;;
}

.about-area-2pics-widget.bg-image {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-area-2pics-widget .about-content span {
  color: #FF2D55;
  letter-spacing: 1px;
  font-size: 16px;
  text-transform: uppercase;
  display: block;
}

.about-area-2pics-widget .about-area-2pics-widget .about-content h2 {
  font-size: 40px;
  margin-top: 10px;
  margin-bottom: 25px;
}

.about-area-2pics-widget .about-content h2 b {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, rgba(0, 0, 0, 0)), color-stop(80%, #FF2D55));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 80%, #FF2D55 80%);
  font-weight: unset;
  background-size: 100px 1.05em !important;
}

.about-area-2pics-widget .about-content .signature {
  margin-top: 35px;
  margin-bottom: 35px;
}

.about-area-2pics-widget .about-content .btn-primary {
  margin-right: 8px;
}

.about-area-2pics-widget .about-image {
  position: relative;
}

.about-area-2pics-widget .about-image .about-img1 {
  max-width: 750px;
  position: relative;
  right: -100px;
  top: -80px;
}

.about-area-2pics-widget .about-image .about-img2 {
  max-width: 310px;

  position: absolute;
  left: 20px;
  bottom: -80px;
}

.about-area-2pics-widget .about-image img.shape-img {
  max-width: 70px;
}
.about-area-2pics-widget .about-image .shape-img {
  position: absolute;
  top: -28px;
  left: 48%;
  -webkit-animation: movebounce 5s linear infinite;
          animation: movebounce 5s linear infinite;
}

.about-area-2pics-widget .about-image .btn {
  position: absolute;
  bottom: -20px;
  right: 0;
}
@keyframes movebounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes movebounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

/*================================================
Education Speakers Area CSS
=================================================*/
.e-speakers-card {
  margin-bottom: 30px;
  text-align: center;
}

.e-speakers-card .speakers-image {
  position: relative;
}
.e-speakers-card .speakers-image img {

max-width: 100%;
}

.e-speakers-card .speakers-image img {
  border: 5px solid #efa506;
}

.e-speakers-card .speakers-image .color2 {
  border: 5px solid #FF2D55;
}

.e-speakers-card .speakers-image .color3 {
  border: 5px solid #292CDC;
}

.e-speakers-card .speakers-image .color4 {
  border: 5px solid #7E23CB;
}

.e-speakers-card .speakers-image .color5 {
  border: 5px solid #1EB1E9;
}

.e-speakers-card .speakers-image .color6 {
  border: 5px solid #C13584;
}

.e-speakers-card .speakers-image .color7 {
  border: 5px solid #62618D;
}

.e-speakers-card .speakers-image .color8 {
  border: 5px solid #0077B5;
}

.e-speakers-card .speakers-image .social {
  padding: 0;
  margin-bottom: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.e-speakers-card .speakers-image .social li {
  list-style-type: none;
  display: inline-block;
  margin-right: 5px;
}

.e-speakers-card .speakers-image .social li:last-child {
  margin-right: 0;
}

.e-speakers-card .speakers-image .social li a i {
  display: inline-block;
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
  background-color: #FF2D55;
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 50px;
}

.e-speakers-card .speakers-image .social li a i:hover {
  background-color: #efa506;
}

.e-speakers-card .speakers-content {
  margin-top: 30px;
}

.e-speakers-card .speakers-content h3 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 0;
  font-weight: 600;
}
.e-speakers-card .speakers-content h3 {
  color: #FFF;
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.e-speakers-card .speakers-content h4 {
  color: #efa506;
  font-size: 16px;
  display: inline-block;
  margin-top: 5px;
  margin-top: 0;
  font-weight: 500;

}
.e-speakers-card .speakers-content h5 {
  color: #00acee;
  font-size: 14px;
  display: block;
  margin-top: -5px;
  margin-bottom: 0;
  font-weight: 400;

}
.e-speakers-card:hover .speakers-image .social {
  bottom: 30px;
  opacity: 1;
  visibility: visible;
}
/*================================================
Carousel Speakers Area CSS
=================================================*/
.m-speakers-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-image: url(../../assets/img/marketing/speakers/speakers-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 250px;
}
.m-speakers-area .section-title-with-center h2 {
  color: #ffffff;
}

.m-speakers-card {
  margin-bottom: 30px;
  text-align: center;
}
.m-speakers-card .speakers-image {
  position: relative;
}
.m-speakers-card .speakers-image img {
  border: 5px solid #efa506;
}
.m-speakers-card .speakers-image .color2 {
  border: 5px solid #FF2D55;
}
.m-speakers-card .speakers-image .color3 {
  border: 5px solid #8dc63f;
}
.m-speakers-card .speakers-image .color4 {
  border: 5px solid #ffffff;
}
.m-speakers-card .speakers-image .social {
  padding: 0;
  margin-bottom: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.m-speakers-card .speakers-image .social li {
  list-style-type: none;
  display: inline-block;
  margin-right: 5px;
}
.m-speakers-card .speakers-image .social li:last-child {
  margin-right: 0;
}
.m-speakers-card .speakers-image .social li a i {
  display: inline-block;
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
  background-color: #FF2D55;
  color: #ffffff;
  transition: 0.5s;
  border-radius: 50px;
}
.m-speakers-card .speakers-image .social li a i:hover {
  background-color: #efa506;
}
.m-speakers-card .speakers-content {
  margin-top: 30px;
}
.m-speakers-card .speakers-content h3 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 0;
  font-weight: 600;
}
.m-speakers-card .speakers-content span {
  color: #ffffff;
  font-size: 14px;
  display: inline-block;
  margin-top: 12px;
}
.m-speakers-card:hover .speakers-image .social {
  bottom: 30px;
  opacity: 1;
  visibility: visible;
}

.m-speakers-slides.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: linear-gradient(93.54deg, #EFA506 0%, #FF2D55 100%);
  border: none;
  border-radius: 20px;
}
.m-speakers-slides.owl-theme .owl-dots .owl-dot:hover span, .m-speakers-slides.owl-theme .owl-dots .owl-dot:focus span {
  background: linear-gradient(93.54deg, #EFA506 0%, #FF2D55 100%);
}
.m-speakers-slides.owl-theme .owl-dots .owl-dot.active span {
  background: linear-gradient(93.54deg, #EFA506 0%, #FF2D55 100%);
  width: 30px;
}

/*Speakers-style-three*/
.speakers-area-two {
  padding-bottom: 90px;
}
.speakers-area-two img {
  max-width: 100%;
}
.single-speakers-box {
  margin-bottom: 30px;
  text-align: center;
  transition: 0.5s;
  box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.06);
}
.single-speakers-box .speakers-content {
  background: #ffffff;
  padding: 30px 0;
  position: relative;
  transition: 0.5s;
}
.single-speakers-box .speakers-content::before {
  content: "";
  width: 0;
  height: 20px;
  color: #ffffff;
  background: #FF2D55;
  position: absolute;
  top: -20px;
  right: 0;
  transition: 0.5s;
}
.single-speakers-box .speakers-content h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.single-speakers-box .speakers-content h3 a {
  color: #0d1028;
}
.single-speakers-box .speakers-content span {
  display: block;
  text-transform: uppercase;
  transition: 0.5s;
  font-family: "Oswald", sans-serif;
  color: #FF2D55;
}
.single-speakers-box .speakers-content .social {
  padding: 0;
  margin: 0;
  list-style-type: none;
  position: absolute;
  top: -37px;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: scale(0);
  transition: 0.5s;
}
.single-speakers-box .speakers-content .social li {
  display: inline-block;
}
.single-speakers-box .speakers-content .social li a {
  display: block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 16px;
  color: #a0a0a0;
  margin-right: 10px;
  position: relative;
  z-index: 1;
}
.single-speakers-box .speakers-content .social li a:hover {
  color: #ffffff;
}
.single-speakers-box .speakers-content .social li a:hover::before {
  background: #00acee;
  color: #ffffff;
  transform: rotate(-45deg);
}
.single-speakers-box .speakers-content .social li a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #ffffff;
  transform: rotate(45deg);
  z-index: -1;
  transition: 0.5s;
}
.single-speakers-box:hover {
  box-shadow: 0 0 28px 0 rgba(6, 74, 255, 0.22);
}
.single-speakers-box:hover::before, .single-speakers-box:hover::after {
  border-color: #FF2D55;
  transform: scale(1);
}
.single-speakers-box:hover .speakers-content {
  background: #FF2D55;
}
.single-speakers-box:hover .speakers-content::before {
  width: 100%;
}
.single-speakers-box:hover .speakers-content .social {
  transform: scale(1);
}
.single-speakers-box:hover .speakers-content h3 a, .single-speakers-box:hover .speakers-content span {
  color: #ffffff;
}

/*--------------------------------------------------------------
#speakers alt
---------------------------------------------------------------*/
.speakers-area img {
  max-width: 100%;
}
.single-speakers-widget {
  overflow: hidden;
  position: relative;
}
.single-speakers-widget::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(transparent 0%, transparent 40%, rgba(0, 0, 0, 0.3) 58%, rgba(0, 0, 0, 0.8) 89%, rgba(0, 0, 0, 0.63) 100%);
  width: 100%;
  height: 100%;
}
.single-speakers-widget .speakers-content {
  position: absolute;
  bottom: 35px;
  left: 35px;
  transition: 0.5s;
}
.single-speakers-widget .speakers-content h3 {
  font-size: 24px;
  margin-bottom: 0;
}
.single-speakers-widget .speakers-content h3 ,.single-speakers-widget .speakers-content h3 a {
  color: #FF2D55;
}
.single-speakers-widget .speakers-content h3 a:hover, .single-speakers-widget .speakers-content h3 a:focus {
  color: #8dc63f;
}
.single-speakers-widget .speakers-content span {
  display: block;
  margin-top: 6px;
  color: #ffffff;
  transition: 0.5s;
}
.single-speakers-widget ul {
  padding: 15px 20px 10px;
  margin: 0 0 0;
  opacity: 0;
  visibility: hidden;
  list-style-type: none;
  transition: 0.5s;
  position: absolute;
  right: -15px;
  top: 0;
  background-color: #ffffff;
}
.single-speakers-widget ul li {
  display: block;
  margin-bottom: 5px;
}
.single-speakers-widget ul li a {
  width: 40px !important;
  height: 40px !important;
  line-height: 40px;
  text-align: center;
  background-color: #FF2D55;
  color: #ffffff;
  border-radius: 50%;
  display: block;
}
.single-speakers-widget ul li a.facebook {
  background-color: #4267b2;

}
.single-speakers-widget ul li a.twitter {
  background-color: #38A1F3;
}
.single-speakers-widget ul li a.instagram {
  background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
}
.single-speakers-widget ul li a.linkedin {
  background-color: #0077B5;
}
.single-speakers-widget ul li a:hover, .single-speakers-widget ul li a:focus {
  background-color: #FF2D55;
  color: #ffffff;
}
.single-speakers-widget:hover .speakers-content, .single-speakers-widget:focus .speakers-content {
  bottom: 45px;
}
.single-speakers-widget:hover ul, .single-speakers-widget:focus ul {
  right: 0;
  opacity: 1;
  visibility: visible;
}


/*Speakers-Style-Two*/
.anagram-single-speakers {
  overflow: hidden;
  position: relative;
}
.anagram-single-speakers .speakers-content {
  position: absolute;
  bottom: -25px;
  left: 0;
  background-color: #ffffff;
  width: 100%;
  height: auto;
  padding: 25px 15px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.anagram-single-speakers .speakers-content h3 {
  font-size: 24px;
  margin-bottom: 0;
}
.anagram-single-speakers .speakers-content h3 a {
  color: #0d1028;
}
.anagram-single-speakers .speakers-content h3 a:hover, .anagram-single-speakers .speakers-content h3 a:focus {
  color: #FF2D55;
}
.anagram-single-speakers .speakers-content span {
  display: block;
  margin-top: 8px;
  color: #FF2D55;
  font-family: "Oswald", sans-serif;
  transition: 0.5s;
}
.anagram-single-speakers ul {
  padding: 15px 20px 10px;
  margin: 0 0 0;
  opacity: 0;
  visibility: hidden;
  list-style-type: none;
  transition: 0.5s;
  position: absolute;
  right: -15px;
  top: 0;
  background-color: #ffffff;
}
.anagram-single-speakers ul li {
  display: block;
  margin-bottom: 5px;
}
.anagram-single-speakers ul li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #FF2D55;
  color: #ffffff;
  border-radius: 50%;
}
.anagram-single-speakers ul li a.facebook {
  background-color: #4267b2;
}
.anagram-single-speakers ul li a.twitter {
  background-color: #38A1F3;
}
.anagram-single-speakers ul li a.instagram {
  background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
}
.anagram-single-speakers ul li a.linkedin {
  background-color: #0077B5;
}
.anagram-single-speakers ul li a:hover, .anagram-single-speakers ul li a:focus {
  background-color: #FF2D55;
  color: #ffffff;
}
.anagram-single-speakers img {
  transition: 0.5s;
}
.anagram-single-speakers:hover .speakers-content, .anagram-single-speakers:focus .speakers-content {
  bottom: 0;
  opacity: 1;
  visibility: visible;
}
.anagram-single-speakers:hover ul, .anagram-single-speakers:focus ul {
  right: 0;
  opacity: 1;
  visibility: visible;
}
.anagram-single-speakers:hover img, .anagram-single-speakers:focus img {
  transform: scale(1.2);
  filter: grayscale(100%);
}
/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio-widget .portfolio-item {
  margin-bottom: 30px;
}

.portfolio-widget #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio-widget #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio-widget #portfolio-flters li:hover,
.portfolio-widget #portfolio-flters li.filter-active {
  color: #2487ce;
}

.portfolio-widget #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio-widget .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.portfolio-widget .portfolio-wrap::before {
  content: "";
  background: rgba(36, 135, 206, 0.6);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio-widget .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio-widget .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio-widget .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio-widget .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio-widget .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.portfolio-widget .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio-widget .portfolio-wrap .portfolio-links a {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio-widget .portfolio-wrap .portfolio-links a:hover {
  color: #fff;
}

.portfolio-widget .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio-widget .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio-widget .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}

.portfolio-widget .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

/*----------------------------------------*/
/*  04. About CSS
/*----------------------------------------*/
.about-section-widget .about-wrapper {
  margin-left: 0;
  margin-right: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about-section-widget .about-wrapper>.col,
.about-section-widget .about-wrapper>[class*=col-] {
  padding-left: 0;
  padding-right: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-section-widget .about-wrapper {
    -webkit-box-align: inherit;
    -ms-flex-align: inherit;
    align-items: inherit;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-section-widget .about-wrapper {
    margin-left: -15px;
    margin-right: -15px;
  }

  .about-section-widget .about-wrapper>.col,
  .about-section-widget .about-wrapper>[class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .about-section-widget .about-wrapper {
    margin-left: -15px;
    margin-right: -15px;
  }

  .about-section-widget .about-wrapper>.col,
  .about-section-widget .about-wrapper>[class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/*-- About Image --*/
.about-section-widget .about-image {
  position: relative;
  z-index: 1;
}

.about-section-widget .about-image.about-image-1 {
  margin-bottom: -50px;
}

.about-section-widget .about-image.about-image-2 {
  margin-top: -50px;
  border-top: 20px solid #FFF;
  border-right: 20px solid #FFF;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-section-widget .about-image {
    margin: 0 !important;
  }
}

@media only screen and (max-width: 767px) {
  .about-section-widget .about-image {
    margin: 0 !important;
  }

}

@media only screen and (max-width: 575px) {
  .about-section-widget .about-image.about-image-2 {
    margin-top: 30px !important;
  }
}

.about-section-widget .about-image img {
  width: 100%;
}

/*-- About Content --*/
.about-section-widget .about-content.about-content-1 {
  margin-bottom: 50px;
}

.about-section-widget .about-content.about-content-2 {
  margin-top: 0px;
  padding-top: 60px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-section-widget .about-content.about-content-2 {
    padding-top: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-section-widget .about-content.about-content-1 {
    margin-bottom: 0;
  }

  .about-section-widget .about-content.about-content-2 {
    margin-top: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .about-section-widget .about-content.about-content-1 {
    margin-bottom: 0;
  }

  .about-section-widget .about-content.about-content-2 {
    margin-top: 15px;
  }
}

.about-section-widget .about-content h3 {
  font-size: 32px;
  margin-bottom: 20px;
  /* display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;*/

}

.about-section-widget .about-content h4 {
  position: relative;
  font-size: 24px;
  margin-bottom: 15px;
  color: #f49ac1;

}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-section-widget .about-content h3 {
    font-size: 26px;
  }
}

@media only screen and (max-width: 767px) {
  .about-section-widget .about-content h3 {
    font-size: 26px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 479px) {
  .about-section-widget .about-content h3 {
    font-size: 20px;
  }

  .about-section-widget .about-content h3 span {
    font-size: 36px;
  }
}

.about-section-widget .about-content p {
  margin-bottom: 20px;
}

.about-section-widget .about-content p:last-child {
  margin-bottom: 0;
}

.about-section-widget .about-content .btn {
  margin-top: 10px;
}

/*--------------------------------------------------------------
# parallax
--------------------------------------------------------------*/
section.parallax-widget {
  margin-top: 100px;
}
.parallax-widget {
	position: relative;
	padding-top: 120px;
	padding-bottom: 120px;
	background-color: #000;
}

.parallax-widget .parallax_bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: center center;
	opacity: 0.9;
}

.parallax-widget  .container {
	position: relative;
}
.parallax-widget  h2{
  font-size: 56px !important;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  color: #FFFFFF;
}
.parallax-widget  p {
  /*font-family: 'Cormorant Garamond', serif;
  font-style: italic ;*/
  text-align: center;
  color: #FFF;
  font-size: 26px;


}
élément {
}
@media screen {
  html:not(.no-js) [data-aos="flip-down"].aos-animate {
    -webkit-transform: perspective(2500px) rotateX(0);
    transform: perspective(2500px) rotateX(0);
  }
}
@media screen {
  html:not(.no-js) [data-aos^="flip"][data-aos^="flip"] {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform,-webkit-transform;
  }
}
@media screen {
  html:not(.no-js) [data-aos="flip-down"] {
    -webkit-transform: perspective(2500px) rotateX(100deg);
    transform: perspective(2500px) rotateX(100deg);
  }
}
[data-aos][data-aos][data-aos-easing="ease-in-out"], body[data-aos-easing="ease-in-out"] [data-aos] {
  transition-timing-function: ease-in-out;
}
[data-aos][data-aos][data-aos-duration="1000"], body[data-aos-duration="1000"] [data-aos] {
  transition-duration: 1s;
}
[data-aos].aos-animate {
  pointer-events: auto;
}
[data-aos] {
  pointer-events: none;
}
.parallax-widget .btn-cta {
  display: inline-block;
  vertical-align: middle;
  border: none;
  outline: none;
  background-color: var(--thm-primary);
  text-transform: uppercase;
  font-size: 18px;
  font-weight: bold;
  color: var(--thm-black);
  padding: 25px 61.5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
    transition-property: all;
    transition-duration: 500ms;
    transition-timing-function: ease;
}
.parallax-widget  .btn-cta {
  color: #062B56;
  border-color: #FFF; 
  background-color: #FFF;

}
.parallax-widget  .btn-cta:hover {
    color: #FFF;
    background-color: #FFA724;
    border-color: #FFA724; 
}

/*--------------------------------------------------------------
# Activities
--------------------------------------------------------------*/
.activities-widget {
  position: relative;
}
.activities-widget .bg_line {
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  -webkit-animation: movebounce 5s linear infinite;
  animation: movebounce 5s linear infinite;
  width: 400px;
}
.activities-widget .activity{
  margin-bottom: 30px;
  position: relative;
}
.activities-widget  .activity:hover{
  cursor: pointer;
}
.activities-widget .thumb{
  border-radius: 0%;
  overflow: hidden;
  position: relative;
}
.activities-widget .thumb img{
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.activity:hover .thumb img{
  -webkit-transform: scale(1.1) rotate(-1deg);
  -moz-transform: scale(1.1) rotate(-1deg);
  -o-transform: scale(1.1) rotate(-1deg);
  -ms-transform: scale(1.1) rotate(-1deg);
  transform: scale(1.1) rotate(-1deg);
}
.activities-widget .overlay {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 0px;
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.activities-widget .overlay .details {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.activities-widget .overlay .details h4 {
  color: #ffffff !important;
  font-size: 20px;
  line-height: 1.2;
  text-transform: uppercase;
}
.activities-widget .overlay .details a:hover h4   {
  color: #ffffff !important;

}
.activities-widget .overlay .details p {
  font-size: 14px;
  font-family: "Nunito";
  color: #ffffff;
  line-height: 1.2;
}

.activities-widget .btn-cta {
  color: #FFF;
  border-color: #000; 
  background-color: #000;

}
.activities-widget .btn-cta:hover {
    color: #FFA724;
    background-color: #1d436f;
    border-color: #1d436f; 
}

/*--------------------------------------------------------------
# post
--------------------------------------------------------------*/
#post {
  margin: 50px 0;
}

.post .post-detail {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  /*box-shadow: 0 48px 58px -29px rgba(0, 0, 0, 0.17);
  /*border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);*/
}
.post .post-detail.communes {
  box-shadow: 0 48px 58px -29px rgba(0, 0, 0, 0.17);
}

.post .post-detail .post-detail-img {
  position: relative;
  overflow: hidden;
  height: 250px;
}
.post a .post-detail.communes .post-detail-img img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  height: 100%;
  width: auto;
  min-width: 100%;
  max-width: 100vw;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.post   a:hover .post-detail.communes .post-detail-img img {
  transform: translate(-50%, -50%) scale(1.025);
}





a .post-detail .post-detail-img .post-overlay-banner {
  background: rgba(60, 60, 59, 0.7);
  position: absolute;
  top: -100%;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: all 0.5s ease-out 0s;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
}
.post-detail .post-detail-img .post-overlay-banner ul {
  text-align: center;
  left: 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  z-index: 99;
}

.post-detail .post-detail-img .post-overlay-banner ul li {
  display: inline-block;
  text-align: center;
}

a .post-detail .post-detail-img .post-overlay-banner ul li  {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
}

.post-detail .post-detail-img .post-overlay-banner .post-overlay-banner ul li a:hover {
  background: #ffffff;
  color: #000;
}

a:hover .post-detail  .post-overlay-banner {
  opacity: 1;
  top: 0;
}




.post-detail.gray-bg .post-content {
  background: #f6f6f6;
}


.post .post-detail .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


.post .post-detail .post-detail-info {
  padding: 25px 15px;
  
}

.post .post-detail .post-detail-info h4 {
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 22px;
  color: #9A855C !important;
}



.post .post-detail .post-detail-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.post .post-detail .post-detail-info h4 {
  font-weight: 400;
  font-style: normal;
  margin-bottom: 5px;
  font-size: 20px;
  color: #00576f !important;
}
.post .post-detail:hover .social {
  opacity: 1;
}

/********************************
  10. TEAM
********************************/

.equipe{
  background: #fff;
  -webkit-transition: .5s;
  transition: .5s;
  margin-bottom: 30px;
  margin-bottom: 30px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.15);
  box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.15);}

.equipe:hover{
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.equipe .photo {
  position: relative;
}

.equipe .photo img {
  width: 100%;
}

.equipe .photo .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(36, 135, 206, 0.6);
  padding: 8px;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transition: all 500ms ease 0s;
}

.equipe .photo .overlay .border {
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  display: flex;
  display: -webkit-flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.equipe .photo .overlay .border .icon-holder {
  width: 50px;
  height: 50px;
  background: #fff;
  margin: 4px;
  border-radius: 50%;
  transition: all 500ms ease 0s;
}

.equipe .photo .overlay .border .icon-holder a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 18px;
  color: #272727;
  border-radius: 50%;
  line-height: 50px;
  transition: all 500ms ease 0s;
  background: #fff;
}

.equipe .photo .overlay .border .icon-holder a i{
  line-height: 50px!important;
}

.equipe .content {
  margin-top: 15px;
  transition: .5s;
  padding: 15px;
  text-align: center;
}

.equipe .content h4 {
 margin-bottom: 3px;
}

.equipe .content h4 a{
  font-size: 21px;
  font-weight: 400;
}

.equipe .content p {
  font-size: 15px;
  margin-bottom: 0;
}

.equipe:hover .photo .overlay {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-bg: #ffffff;
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: 1px;
  --bs-modal-border-radius: 0.5rem;
  --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(25, 26, 28, 0.075);
  --bs-modal-inner-border-radius: calc(0.5rem - 1px);
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: 1px;
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: 1px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none
}

.modal.fade .modal-dialog {
  transition: transform .3s ease-out;
  transform: translate(0, -50px)
}

@media (prefers-reduced-motion:reduce) {
  .modal.fade .modal-dialog {
      transition: none
  }
}

.modal.show .modal-dialog {
  transform: none
}

.modal.modal-static .modal-dialog {
  transform: scale(1.02)
}

.modal-dialog-scrollable {
  height: calc(100% - var(--bs-modal-margin) * 2)
}

.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - var(--bs-modal-margin) * 2)
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: var(--bs-modal-bg);
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  outline: 0
}

.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #191A1C;
  --bs-backdrop-opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg)
}

.modal-backdrop.fade {
  opacity: 0
}

.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity)
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-modal-header-padding);
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  border-top-left-radius: var(--bs-modal-inner-border-radius);
  border-top-right-radius: var(--bs-modal-inner-border-radius)
}

.modal-header .btn-close {
  padding: calc(var(--bs-modal-header-padding-y) * .5) calc(var(--bs-modal-header-padding-x) * .5);
  margin: calc(-.5 * var(--bs-modal-header-padding-y)) calc(-.5 * var(--bs-modal-header-padding-x)) calc(-.5 * var(--bs-modal-header-padding-y)) auto
}

.modal-title {
  margin-bottom: 0;
  line-height: var(--bs-modal-title-line-height)
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: var(--bs-modal-padding)
}

.modal-footer {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * .5);
  background-color: var(--bs-modal-footer-bg);
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  border-bottom-left-radius: var(--bs-modal-inner-border-radius)
}

.modal-footer>* {
  margin: calc(var(--bs-modal-footer-gap) * .5)
}

@media (min-width:576px) {
  .modal {
      --bs-modal-margin: 1.75rem;
      --bs-modal-box-shadow: 0 0.5rem 1rem rgba(25, 26, 28, 0.15)
  }

  .modal-dialog {
      max-width: var(--bs-modal-width);
      margin-right: auto;
      margin-left: auto
  }

  .modal-sm {
      --bs-modal-width: 300px
  }
}

@media (min-width:992px) {

  .modal-lg,
  .modal-xl {
      --bs-modal-width: 800px
  }
}

@media (min-width:1200px) {
  .modal-xl {
      --bs-modal-width: 1140px
  }
}

.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0
}

.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0
}

.modal-fullscreen .modal-footer,
.modal-fullscreen .modal-header {
  border-radius: 0
}

.modal-fullscreen .modal-body {
  overflow-y: auto
}

@media (max-width:575.98px) {
  .modal-fullscreen-sm-down {
      width: 100vw;
      max-width: none;
      height: 100%;
      margin: 0
  }

  .modal-fullscreen-sm-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0
  }

  .modal-fullscreen-sm-down .modal-footer,
  .modal-fullscreen-sm-down .modal-header {
      border-radius: 0
  }

  .modal-fullscreen-sm-down .modal-body {
      overflow-y: auto
  }
}

@media (max-width:767.98px) {
  .modal-fullscreen-md-down {
      width: 100vw;
      max-width: none;
      height: 100%;
      margin: 0
  }

  .modal-fullscreen-md-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0
  }

  .modal-fullscreen-md-down .modal-footer,
  .modal-fullscreen-md-down .modal-header {
      border-radius: 0
  }

  .modal-fullscreen-md-down .modal-body {
      overflow-y: auto
  }
}

@media (max-width:991.98px) {
  .modal-fullscreen-lg-down {
      width: 100vw;
      max-width: none;
      height: 100%;
      margin: 0
  }

  .modal-fullscreen-lg-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0
  }

  .modal-fullscreen-lg-down .modal-footer,
  .modal-fullscreen-lg-down .modal-header {
      border-radius: 0
  }

  .modal-fullscreen-lg-down .modal-body {
      overflow-y: auto
  }
}

@media (max-width:1199.98px) {
  .modal-fullscreen-xl-down {
      width: 100vw;
      max-width: none;
      height: 100%;
      margin: 0
  }

  .modal-fullscreen-xl-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0
  }

  .modal-fullscreen-xl-down .modal-footer,
  .modal-fullscreen-xl-down .modal-header {
      border-radius: 0
  }

  .modal-fullscreen-xl-down .modal-body {
      overflow-y: auto
  }
}

@media (max-width:1399.98px) {
  .modal-fullscreen-xxl-down {
      width: 100vw;
      max-width: none;
      height: 100%;
      margin: 0
  }

  .modal-fullscreen-xxl-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0
  }

  .modal-fullscreen-xxl-down .modal-footer,
  .modal-fullscreen-xxl-down .modal-header {
      border-radius: 0
  }

  .modal-fullscreen-xxl-down .modal-body {
      overflow-y: auto
  }
}

/********************************
  11. hr
********************************/
hr.widget {
  border: none;           /* Supprime toute bordure par défaut */
  height: 1px;            /* Définit une hauteur de 1px */
  background-color: lightgray; /* Définit une couleur de fond gris clair */
  margin: 80px 0;         /* Ajoute un espacement vertical */
}

.g-0 {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}

.read_tcs {
  font-size: 10px;
}
/***
====================================================================
		Page Banner
====================================================================

***/

.page-banner{
	position:relative;
	padding: 0;
	color: #ffffff;
	background: #061138;
	background-position:center center;
	background-repeat:no-repeat;
	background-size:cover;
}

.page-banner .image-layer{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-position:center center;
	background-repeat:no-repeat;
	background-size:cover;
}

.page-banner .banner-inner{
	position: relative;
	display: block;
	text-align: center;
}

.page-banner .inner-container{
	position: relative;
	padding: 130px 0px;
	z-index:2;
}

.page-banner h1{
	position:relative;
	font-size:48px;
	color:#ffffff;
	line-height: 1.2em;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin: 0;
}

.page-banner .page-nav{
	position: absolute;
	left: 0;
	bottom: 0;
	text-align: left;
	padding-bottom: 15px;
}

.page-banner .bread-crumb{
	position: relative;
	display: inline-block;
}

.page-banner .bread-crumb li{
	position: relative;
	float: left;
	font-size: 13px;
	line-height: 24px;
	color: #ffffff;
	font-weight: 500;
	text-transform: uppercase;
	cursor: default;
	padding-right:  15px;
	margin-right: 15px;
}

.page-banner .bread-crumb li:before{
	position: absolute;
	right: -15px;
	width: 30px;
	text-align: center;
	font-size: 10px;
	line-height: 24px;
	color: #ffffff;
	font-weight: 400;
	font-family: 'Flaticon';
    content: "\f10f";
}

.page-banner .bread-crumb li:last-child{
	padding-right: 0;
	margin-right: 0;
}

.page-banner .bread-crumb li:last-child:before{
	display: none;
}

.page-banner .bread-crumb li a{
	color:#ffffff;
	font-weight: 500;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.page-banner .bread-crumb li a:hover{
	color:#d5ae82;	
}


@media only screen and (max-width: 1139px){
	.page-banner h1{
		font-size: 40px;
	}

	.welcome-section .title-box h2,.team-section .title-box h2
	{
		font-size: 32px;
	}

	.welcome-section .title-box h4,.team-section .title-box h4,
	.event-carousel-box .event-block h4{
		font-size: 20px;
	}	
}

@media only screen and (max-width: 991px){	
	.page-banner h1{
		font-size: 36px;
	}
	.welcome-section{
		padding: 70px 0px;
	}	

}

@media only screen and (max-width: 767px){
	.page-banner h1{
		font-size: 30px;
	}
	.page-banner .inner-container{
		padding-top: 100px;
	}	


	

}
@media only screen and (max-width: 599px){
	.page-banner h1{
		font-size: 24px;
	}
}


/* ------------------------------

portfolio

------------------------------ */
/* ----- portfolio item ----- */
.widget-work-item {
  width: 100%;
  background-color: #28292c;
  position: relative;
  overflow: hidden; }
  .widget-work-item .widget-work-descr {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    background-color: #28292c;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    z-index: 9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out; }
    .widget-work-item .widget-work-descr .widget-work-more {
      background-color: #D95A08;
      width: 35px;
      min-width: 35px;
      height: 35px;
      border-radius: 50%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      color: #28292c; }
  .widget-work-item .widget-work-cover-frame {
    display: block;
    position: relative;
    padding-bottom: 63%;
    -webkit-filter: brightness(90%);
            filter: brightness(90%);
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out; }
    .widget-work-item .widget-work-cover-frame img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      -o-object-position: center;
         object-position: center; }
    .widget-work-item .widget-work-cover-frame .widget-item-zoom {
      -webkit-transform: translateY(-100%);
              transform: translateY(-100%);
      width: 50px;
      height: 50px;
      position: absolute;
      top: 0;
      right: 0;
      background: #28292c;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-transition: 0.4s ease-in-out 0.05s;
      transition: 0.4s ease-in-out 0.05s; }
      .widget-work-item .widget-work-cover-frame .widget-item-zoom i {
        text-align: center;
        width: 60px;
        font-size: 12px;
        color: white;
        line-height: 60px;
        -webkit-transition: 0.2s ease-in-out;
        transition: 0.2s ease-in-out; }
      .widget-work-item .widget-work-cover-frame .widget-item-zoom:hover {
        background-color: #28292c; }
        .widget-work-item .widget-work-cover-frame .widget-item-zoom:hover i {
          -webkit-transform: scale(1.1);
                  transform: scale(1.1); }
    .widget-work-item .widget-work-cover-frame .widget-work-category {
      background-color: #f7f8f8;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 5px 0 5px 10px;
      color: #28292c;
      position: absolute;
      top: 0;
      left: 0;
      font-size: 9px;
      display: inline-block;
      -webkit-transition: 0.4s ease-in-out;
      transition: 0.4s ease-in-out; }
      .widget-work-item .widget-work-cover-frame .widget-work-category span {
        margin-right: 10px; }
    .widget-work-item .widget-work-cover-frame:hover {
      -webkit-filter: brightness(110%);
              filter: brightness(110%); }
      .widget-work-item .widget-work-cover-frame:hover .widget-item-zoom {
        opacity: 1; }
  .widget-work-item:hover .widget-work-descr {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  .widget-work-item:hover .widget-item-zoom {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  .widget-work-item.widget-work-open .widget-work-descr {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    position: relative; }

/* ----- portfolio item (after 768px) ----- */
@media (max-width: 768px) {
  .widget-work-item .widget-work-descr {
    -webkit-transform: none;
            transform: none; } }
/* ----- portfolio grid sizes ----- */
.widget-masonry-grid-item-h-x-2 .widget-work-item .widget-work-cover-frame {
  padding-bottom: calc(126% + 20px); }

.widget-masonry-grid-item-50 .widget-work-item .widget-work-cover-frame {
  padding-bottom: calc(63% + 8px); }
.widget-masonry-grid-item-50.widget-masonry-grid-item-h-x-2 .widget-work-item .widget-work-cover-frame {
  padding-bottom: calc(126% + 36px); }

/* ----- masonry grid ----- */
.widget-masonry-grid {
  margin: -10px;
  min-height: 100vh !important; }

.widget-masonry-grid:after {
  content: '';
  display: block;
  clear: both; }

.widget-grid-sizer,
.widget-masonry-grid-item {
  width: 50%; }

.widget-3-col .widget-grid-sizer,
.widget-3-col .widget-masonry-grid-item {
  width: 33.333%; }

.widget-4-col .widget-grid-sizer,
.widget-4-col .widget-masonry-grid-item {
  width: 25%; }

.widget-masonry-grid-item {
  float: left;
  padding: 20px;
  overflow: hidden; }

.widget-masonry-grid-item-33 {
  width: 33%; }

.widget-masonry-grid-item-50 {
  width: 50%; }

.widget-masonry-grid-item-100 {
  width: 100%; }

/* ----- filter ----- */
.widget-filter-frame {
  padding: 20px; }


 #mainFilter::before{
    content: url(../img/coin_orange_title.png);
    position:absolute; 
    margin-left: -17px;
    margin-top: 3px;
  
  }
.widget-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; 
        margin: 50px 0 30px 0;}
  .widget-filter.widget-justify-end {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
  .widget-filter .widget-work-category {
    position: relative;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 12px;
    display: block;
    letter-spacing: 1px;
    background-color: #EDE7E0;
    color: #444;
    height: 40px;
    margin-right: 10px;
    letter-spacing: 2px;
    line-height: 40px;
    padding: 2px 20px 0;
    margin-bottom: 0;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out; }

    .widget-filter .widget-work-category:hover {
      background-color: #E1D8CC; }

    .widget-filter .widget-work-category.widget-filter-icon {
      padding-left: 20px; }
      .widget-filter .widget-work-category.widget-filter-icon i {
        text-align: center;
        line-height: 40px;
        position: absolute;
        top: 0;
        left: 0;
        background-color: #D95A08;
        margin-right: 0;
        height: 100%;
        width: 40px; }
    .widget-filter .widget-work-category.widget-current {
      background-color: #E1D8CC; }
      .widget-filter .widget-work-category.widget-current.widget-filter-icon i {
        color: #28292c; }

@media (max-width: 992px) {
  .widget-grid-sizer,
  .widget-masonry-grid-item {
    width: 50%; }

  .widget-masonry-grid-item-33 {
    width: 50%; }

  .widget-masonry-grid-item-50 {
    width: 50%; }

  .widget-masonry-grid-item-100 {
    width: 100%; }

  .widget-filter {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    .widget-filter .widget-work-category {
      margin-bottom: 10px; }
      .widget-filter .widget-work-category:last-child {
        margin-bottom: 0; } }
@media (max-width: 500px) {
  .widget-grid-sizer,
  .widget-masonry-grid-item {
    width: 100%; }

  .widget-masonry-grid-item-33 {
    width: 100%; }

  .widget-masonry-grid-item-50 {
    width: 100%; }

  .widget-masonry-grid-item-100 {
    width: 100%; } }

.img-wrap {
  /* 1) Définir une taille : ici 100% de la largeur du parent, et 0 hauteur initiale */
  width: 100%;          
  height: 0;

  /* 2) Utiliser un padding-top à pourcentage pour créer un ratio (ex. 16/9) :
     padding-top: (hauteur / largeur) * 100%;
     Pour un ratio 16:9 → 9/16 = 0.5625 → 56.25% */
  padding-top: 56.25%;

  /* 3) Arrière-plan */
  background-size: cover;       /* l’image couvre tout le conteneur en conservant ses proportions */
  background-position: center;  /* centrer l’image dans le conteneur */
  background-repeat: no-repeat; /* ne pas répéter l’image si elle est plus petite */

  /* 4) (Facultatif) Pour ajouter une transition si l’on change le background-image dynamiquement */
  transition: background-image 0.3s ease-in-out;
}
